home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / novapi.zip / NOVELL.PAS < prev   
Pascal/Delphi Source File  |  1993-01-04  |  394b  |  18 lines

  1. {============================}
  2. { Test program for NOVAPI    }
  3. { Richard Casey              }
  4. { CIS 72247,151              }
  5. {============================}
  6.  
  7. program NovellTest;
  8.  
  9. uses dos,novapi;
  10.  
  11. begin
  12.   writeln('Network Information');
  13.   writeln('Logical id  = ',NovellLogicalID);
  14.   writeln('Physical id = ',NovellPhysicalID);
  15.   writeln('Login name  = ',NovellLogonName);
  16.  
  17. end.
  18.